Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632543 Views

Latest files of /cody/solygambas/html-css-javascript-projects/074-relaxer app

style.css cody/solygambas/html-css-javascript-projects/074-relaxer app/style.css
159 Views
0 Comments
@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");

:root {
--background-color: #046973;
--large-circle-color: #010f1c;
--light-color: #dcebfe;
--gradient-color-light: #5fa0ac;
--gradient-color-light-border: #65a3ad;
index.html cody/solygambas/html-css-javascript-projects/074-relaxer app/index.html
354 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Relaxer</title>
</head>
script.js cody/solygambas/html-css-javascript-projects/074-relaxer app/script.js
222 Views
0 Comments
const container = document.getElementById("container");
const text = document.getElementById("text");

// The 4-7-8 breathing technique: https://www.medicalnewstoday.com/articles/324417
const totalTime = 19000;
const breatheTime = 4000;
const holdTime = 7000;